array to list java

60

java array to list -

Integer[] spam = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(spam);

array to list java -

int[] ints = new int[] {1,2,3,4,5};
Arrays.stream(ints).boxed().toList();

java list to array -

List<Foo> list = new ArrayList<>();
Foo[] array = list.toArray(new Foo[0]);

java array to list -

int[] spam = new int[] { 1, 2, 3 };
Arrays.stream(spam)
      .boxed()
      .collect(Collectors.toList());

Comments

Submit
0 Comments